home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 10 - 1994 / 10.10 Oct 94 / Sprocket / Interfaces / AppConditionals.h next >
Encoding:
C/C++ Source or Header  |  1994-08-25  |  605 b   |  38 lines  |  [TEXT/MMCC]

  1. /*
  2.     File:        AppConditionals.h
  3.  
  4.     Contains:    Prototypes for the “guts” of a Macintosh application.
  5.  
  6.     Written by: Dave Falkenburg
  7.  
  8.     Copyright:    © 1994 by Dave Falkenburg, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.      
  12.  */
  13.  
  14. #ifndef    _APPCONDITIONALS_
  15. #define    _APPCONDITIONALS_
  16.  
  17. #define        qDebug                1
  18. #define        qUseQuickDrawGX        0
  19. #define        qInlineInputAware    0
  20.  
  21. #ifndef    qUseETO15Interfaces
  22. #define    qUseETO15Interfaces        0
  23. #endif
  24.  
  25. #ifndef    qDebug
  26. #define    qDebug                    0
  27. #endif
  28.  
  29. #ifndef    qUseQuickDrawGX
  30. #define    qUseQuickDrawGX            0
  31. #endif
  32.  
  33. #ifndef    qInlineInputAware
  34. #define    qInlineInputAware        0
  35. #endif
  36.  
  37. #endif
  38.